home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000399_news@columbia.edu_Mon Dec 12 14:08:33 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09623
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 09:08:41 -0500
  3. Received: by apakabar.cc.columbia.edu id AA12966
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 09:08:39 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: term type in telnet-macro (Kermit 3.14)
  9. Date: 12 Dec 1994 14:08:33 GMT
  10. Organization: Columbia University
  11. Lines: 49
  12. Message-Id: <3chlh1$cl0@apakabar.cc.columbia.edu>
  13. References: <3bul2u$47d@infosrv.rz.unibw-muenchen.de>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3bul2u$47d@infosrv.rz.unibw-muenchen.de>,
  18. Peter Schmolck <p41bsmk@kommsrv.rz.unibw-muenchen.de> wrote:
  19. >I'm using MS-Kermit 3.14 Beta-14. My UNIX-hosts do not know what to do 
  20. >with "vt320", and when trying to adjust my mscustom.ini definitions I 
  21. >noted an inconsistency (or bug?). ... the myhost define in mscustom.ini:
  22. >
  23. > define myhost -
  24. >   telnet myhost 23 vt320,-
  25. >   if success assign myhost telnet \v(session)
  26. >
  27. >set the terminal type, and not only the TELNET-negotiated "telnet
  28. >term-type" (which I rather preferred the macro to do).
  29. >
  30. Well, as the accompanying comment says, it's only a sample, which you should
  31. adjust for the host(s) you are actually using, e.g.:
  32.  
  33.   set telnet term-type vt220,-
  34.   telnet myhost,-
  35.   if success assign myhost telnet \v(session)
  36.  
  37. Kermit sends its actual terminal type during TELNET negotiations UNLESS you
  38. have given a SET TELNET TERM command, which overrides the actual terminal
  39. type, but only for the purposes of telling the TELNET server what kind of
  40. terminal type you have.  This is useful, for example, if Kermit's terminal
  41. type is VT320, but the host knows the same terminal by a different name, such
  42. as VT300, and does not recognize Kermit's terminal name.
  43.  
  44. >When I changed the myhost define from vt320 to vt220 the result was, that --
  45. >expectedly -- the status line entry changed to VT220, but --unexpectedly--
  46. >the remote TELNET server still received a "VT320". (??)
  47. >
  48. I checked this just now and it didn't happen to me.  Probably you just
  49. continued the same session, and the terminal type was not renegotiated?
  50.  
  51. >BTW, mskermit.bwr says: "... to create an override string with command 
  52. > SET TCP/IP TELNET-TERM-TYPE."
  53. >Instead this should read either "set tcp/ip term-type" or "set telnet 
  54. >term-type".
  55. >
  56. You're right, we'll fix it.  Thanks!
  57.  
  58. - Frank
  59. x
  60. x
  61. x
  62. x
  63. x
  64. x
  65. x